ComponentOne FlexGrid for UWP
Create(Func<Object,Type,Object,String,Object>) Method
Example 

C1.UWP Assembly > C1.Xaml Namespace > CustomConverter Class > Create Method : Create(Func<Object,Type,Object,String,Object>) Method
The converter function. (value, type, parameter, culture)
Creates the specified converter function.
Syntax
'Declaration
 
Public Overloads Shared Function Create( _
   ByVal converterFunction As System.Func(Of Object,Type,Object,String,Object) _
) As Windows.UI.Xaml.Data.IValueConverter
public static Windows.UI.Xaml.Data.IValueConverter Create( 
   System.Func<object,Type,object,string,object> converterFunction
)

Parameters

converterFunction
The converter function. (value, type, parameter, culture)

Return Value

The converted value
Example
var converter = CustomConverter.Create((value, type, parameter, culture)=>
{
    return; //Put the converter code here
});
See Also

Reference

CustomConverter Class
CustomConverter Members
Overload List